Security News
npm Updates Search Experience with New Objective Sorting Options
npm has a revamped search experience with new, more transparent sorting options—Relevance, Downloads, Dependents, and Publish Date.
streamqueue
Advanced tools
StreamQueue pipe the queued streams one by one in order to preserve their content order.
StreamQueue pipe the queued streams one by one in order to preserve their content order.
## Usage Install the npm module:
npm install streamqueue --save
Then, in your scripts:
var streamqueue = require('streamqueue');
var queue = streamqueue(
Fs.createReadStream('input.txt'),
Fs.createReadStream('input2.txt'),
Fs.createReadStream('input3.txt')
).pipe(process.stdout);
StreamQueue also accept functions returning streams, the above can be written like this, doing system calls only when piping:
var streamqueue = require('streamqueue');
var queue = streamqueue(
Fs.createReadStream.bind(null, 'input.txt'),
Fs.createReadStream.bind(null, 'input2.txt'),
Fs.createReadStream.bind(null, 'input3.txt')
).pipe(process.stdout);
Object-oriented traditionnal API offers more flexibility:
var StreamQueue = require('streamqueue');
var queue = new StreamQueue();
queue.queue(
Fs.createReadStream('input.txt'),
Fs.createReadStream('input2.txt'),
Fs.createReadStream('input3.txt')
);
queue.done();
queue.pipe(process.stdout);
You can also chain StreamQueue methods like that:
var StreamQueue = require('streamqueue');
new StreamQueue()
.queue(Fs.createReadStream('input.txt'))
.queue(Fs.createReadStream('input2.txt'))
.queue(Fs.createReadStream('input3.txt'))
.done()
.pipe(process.stdout);
You can queue new streams at any moment until you call the done() method. So the created stream will not fire the end event until done() call.
Note that stream queue is compatible with the Node 0.10+ streams. For older
streams, stream queue will wrap them with
Readable.wrap
before queueing. Please fix your dependencies or report issues to libraries
using 0.8 streams since this extra code will finally be removed.
Type: Boolean
Default value: false
Use if piped in streams are in object mode. In this case, the stream queue will also be in the object mode.
Type: Boolean
Default value: true
If a stream is in flowing mode, then it will be paused before queueing.
Type: Boolean
Default value: true
If a stream is in flowing mode, then it will be resumed before piping.
StreamQueue inherits of Stream.PassThrough, the options are passed to the parent constructor so you can use it's options too.
Type: Stream
Append streams given in argument to the queue and ends when the queue is empty.
Append streams given in argument to the queue.
Append streams given in argument to the queue and ends when the queue is empty.
A shortcut for StreamQueue({objectMode: true})
.
Feel free to pull your code if you agree with publishing it under the MIT license.
FAQs
StreamQueue pipe the queued streams one by one in order to preserve their content order.
The npm package streamqueue receives a total of 43,530 weekly downloads. As such, streamqueue popularity was classified as popular.
We found that streamqueue demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
npm has a revamped search experience with new, more transparent sorting options—Relevance, Downloads, Dependents, and Publish Date.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.